home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c
/
pro19
/
pad.c
< prev
next >
Wrap
Text File
|
1987-10-04
|
256b
|
9 lines
#define NOCCARGC /* no argument count passing */
/*
** Place n occurrences of ch at dest.
*/
pad(dest, ch, n) char *dest, *n; int ch; {
/* n is a fake unsigned integer */
while(n--) *dest++ = ch;
}